home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / mi33.zip / MI33.DOC < prev   
Text File  |  1993-07-17  |  1KB  |  30 lines

  1. MI33.COM is a resident program that monitors the mouse driver for
  2. hardware and software resets. After passing all requests through
  3. to the original mouse driver, MI33 checks for such the rest
  4. functions (function numbers 0 and 33). If it is a reset function,
  5. MI33 calls mouse function 4, SET MOUSE CURSOR POSTION, to place
  6. the mouse cursor to the upper-left (rather than smack-dab center).
  7.  
  8. Common apps that reset the cursor on entry but leave the cursor
  9. in the center (requiring effort! to place it out of the way) are
  10. CV and PWB (returning from a shell). This makes a big difference
  11. to me. Maybe you, too.
  12.  
  13. See the MI33.ASM file for additional technical information and
  14. credits.
  15.  
  16. To use MI33.COM:
  17.  
  18. Load after MOUSE driver. Since MI33 uses so little memory (144 bytes),
  19. it's probably best to load in low memory since it will fit in unused
  20. (released) environment blocks of TSRs loaded before it. It can also
  21. be loaded high. MI33 should only be loaded once (put in autoexec.bat).
  22.  
  23. Example:
  24.  
  25.           :
  26.         LH C:\SYS\MOUSE.COM
  27.         MI33
  28.           :
  29.  
  30.